   .section3 {
       display: block;
       width: 100%;
       height: 160px;
   }

   .Box3 {
       width: 100%;
       height: 100%;
       display: flex;
       justify-content: space-around;
       align-items: center;
   }

   .item3 {
       display: flex;
       flex-direction: column;
   }


   .item3 h1 {
       display: flex;
       grid-gap: 15px;
       color: #fff;
       font-size: 16px;
       align-items: baseline;
   }

   .item3 h1 span {
       font-weight: bold;
       font-size: 52px;
   }

   .item3 h2 {
       color: #fff;
       font-size: 16px;
       text-align: center;
   }


   @media (max-width: 1200px) {
       .item3 h1 span {
           font-size: 48px;
       }
   }


   @media (max-width: 720px) {
       .item3 h1 {
           grid-gap: 5px;
       }

       .item3 h1 span {
           font-size: 28px;
       }
   }


   @media (max-width: 460px) {
       .Box3 {
           flex-wrap: wrap;
       }

       .item3 {
           width: 50%;
       }

       .item3 h1 {
           font-size: 14px;
           justify-content: center;
       }

       .item3 h2 {
           font-size: 14px;
       }

       .item3 h1 span {
           font-size: 24px;
       }
   }